home *** CD-ROM | disk | FTP | other *** search
- unit DockedControls4U;
-
- interface
-
- uses
- Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
- ComCtrls, ToolWin, StdCtrls, ImgList, ExtCtrls;
-
- type
- TForm1 = class(TForm)
- ImageList1: TImageList;
- Label1: TLabel;
- Panel1: TPanel;
- Image1: TImage;
- ControlBar1: TControlBar;
- ToolBar1: TToolBar;
- ToolButton1: TToolButton;
- ToolButton2: TToolButton;
- ToolButton3: TToolButton;
- ToolButton4: TToolButton;
- ToolButton5: TToolButton;
- procedure FormCreate(Sender: TObject);
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- var
- Form1: TForm1;
-
- implementation
-
- {$R *.DFM}
-
- procedure TForm1.FormCreate(Sender: TObject);
- begin
- Mouse.DragImmediate := False
- end;
-
- end.
-